using Microsoft.ML.Data;

namespace AutoMLExample
{
    public class BiopsyPrediction : BiopsyData
    {
        [ColumnName("PredictedLabel")]
        public bool  IsMalignant { get; set; }
		
        public float Score       { get; set; }
    }
}
